home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software Vault: The Gold Collection
/
Software Vault - The Gold Collection (American Databankers) (1993).ISO
/
cdr11
/
pctv4n2.zip
/
SHADES.ZIP
/
CMFILE.CPP
next >
Wrap
C/C++ Source or Header
|
1993-02-26
|
335b
|
18 lines
// cmfile.cpp -- File menu commands by Tom Swan
#include <owl.h>
#pragma hdrstop
#include "frame.h"
// File|New command
void TFrameWindow::CMFileNew(RTMessage)
{
GetApplication()->MakeWindow(new
TWindow(this, "[untitled]"));
}
// File|Exit command
void TFrameWindow::CMFileExit(RTMessage)
{
CloseWindow();
}